April 1, 2025
Amper 0.6.0 is out, with improvements to both the IDE and CLI experience. Read on for all of the details, and see the release notes for the full list of changes and bug fixes. To get support for Amper’s latest features, use IntelliJ IDEA 2025.1 Beta (or newer). IDE improvements Improved template workflows Templates allow […]
March 24, 2025
Hi, Kotlin fans! Kodee’s back with another roundup of the latest updates and stories from the Kotlin world. Grab your favorite drink, sit back, and enjoy! Kotlin YouTube spotlight Check out our latest YouTube videos and Shorts – sit back, relax, and enjoy!
March 20, 2025
The Kotlin 2.1.20 release is out! This version includes performance improvements and bug fixes for Kotlin 2.1.0. Here are some highlights from this release: For the complete list of changes, refer to What’s new in Kotlin 2.1.20 or the release notes on GitHub. How to install Kotlin 2.1.20 Starting from IntelliJ IDEA 2023.3 and Android […]
March 18, 2025
If you’re using Kotlin for server-side development and sharing your experiences – whether through blog posts, videos, or sample projects – know that we see you, and we want to highlight your work! Recent picks from the community 📖 [Article] From Java to Kotlin — a practical example of how to convert code – Paul […]
fun main() { val name = "stranger" // Declare your first variable println("Hi, $name!") // ...and use it! print("Current count:") for (i in 0..10) { // Loop over a range from 0 to 10 print(" $i") } }